home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 April / Macworld (1999-04).dmg / Serious Software / SiteCam 3.0 demo / Extras / Sample AppleScripts / FTP Scripts / Anarchie sample next >
Text File  |  1997-11-11  |  717b  |  24 lines

  1. -- A post-process script to FTP the last image to a remote location.  
  2. -- This script uses a two step process to minimize the time that a image 
  3. -- is unavailable to the http server.
  4.  
  5. -- Get the name of the last image saved
  6. tell application "SiteCam"
  7.     set yourLocalImage to last image file of active document 
  8. end tell
  9.  
  10. -- Change the variables below, and add passwords, if needed.
  11.  
  12. tell application "Anarchie"
  13.     
  14.     set ftptempfile to "/yourpath/temp.jpg"
  15.     set ftpdestfile to "/yourpath/current.jpg"
  16.     set yourFTPHost to "ftp.yourhost.com"
  17.     
  18.     with timeout of 1000 seconds
  19.         store file yourLocalImage host yourFTPHost path ftptempfile
  20.         rename host yourFTPHost path ftptempfile newname ftpdestfile
  21.     end timeout
  22.     
  23. end tell
  24.